01. What is a Matrix?

What is a Matrix?

Our next step is to understand what a Matrix is.

Before we dive into the video, let's cover a few necessary definitions and calculations!

So what is a Matrix? No, not that Matrix. The Matrix we are referring to was designed and created well before 1999.

A Matrix is a two dimensional array that contains the same elements as the vector.

A Matrix can have mm rows and nn columns.

If a Matrix has mm rows and nn columns is it called an mm x nn matrix.

Lets take a look at matrix AA in the equation below:

A=[a11a12a13..a1na21a22a23..a2na31a32a33..a3n:am1am2am3amn]A=\begin{bmatrix} a_{11} &a_{12} &a_{13}&..& a_{1n}\\ a_{21} &a_{22} &a_{23}&..& a_{2n}\\a_{31} &a_{32} &a_{33}&..& a_{3n}\\ :\\a_{m1} &a_{m2} &a_{m3}&……& a_{mn}\end{bmatrix}

Equation 11

Each element aija_{ij} in the matrix displayed in equation 11 is a numerical value displayed in row ii and column jj.

_Element ij matrix A_

Element ij matrix A

Our next step is to understand how to apply matrix arithmetic: to perform operations such as:

  • Matrix Addition
  • Scalar multiplication of a matrix
  • Matrix multiplication

When performing any mathematical calculations on matrices, we need to make sure we are working with the appropriate dimensions. We also need to be very careful with the indices.
Once we understand that, the rest becomes easier! Let's look at the details: